home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
398
/
398.xpi
/
chrome
/
forecastfox.jar
/
content
/
parser
/
converter-item.js
next >
Wrap
Text File
|
2010-02-04
|
1KB
|
38 lines
/*------------------------------------------------------------------------------
Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
----------------------------------------------------------------------------*/
/******************************************************************************
* Interface for describing a converter item. The component that
* implements this interface should not be called directly, but instead
* gotten from the parser service interface.
*
* @status FROZEN
* @version 1.0
******************************************************************************/
function ConverterItem()
{
this._properties = {};
}
ConverterItem.prototype = {
__proto__: new ItemBase("ConverterItem"),
////////////////////////////////
// ffIConverterItem
/**
* Conversion the converter item applies to.
*/
get conversion() { return this.getProperty("conversion"); },
/**
* Units of the converter item.
*/
get units() { return this.getProperty("units"); },
/**
* Name of the converter item.
*/
get name() { return this.getProperty("name"); }
};